/* Start of Script */

body {
    background-color: lightblue;
}

.mainContent {
    position: fixed;
    left: 15%;
}

.calcFields {
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    text-align: center;
}

.startButton {
    text-align: center;
}

.bolded {
    font-size: 60px;
    font-weight: bold;
}


.report {
    max-height: 300px !important;    
    overflow-y: auto !important;
    overflow-x: hidden;
}

.rightInput, .numberInput { 
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    border: none; 
    outline: none;   
    background-color: inherit;
}

table.checkboxRow td {
    border-collapse: collapse;
    border-top: 1px solid white; 
    border-bottom: 1px solid white;
}

table.checkboxRow td:first-child {
    border-left: 1px solid white;
}

table.checkboxRow td:last-child {
    border-right: 1px solid white;
}

/* Other browsers */
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;

}

input:focus, textarea:focus, select:focus {
    outline: none;
}

